home *** CD-ROM | disk | FTP | other *** search
-
-
- #import <apps/InterfaceBuilder.h>
-
- @interface MiscGaugeViewInspector:IBInspector
- {
- id attribsForm; // Form with all the gauge's attributes.
- // id backgroundColorWell;
- id gaugeColorWell;
- id textColorWell;
- id valueForm; // Form with min, max and current value.
- id sliderMatrix; // Matrix of sliders to match the attribsForm.
- id titleField; // Textfield containing the gauge's title.
- id titlePositionMatrix; // Matrix of 2 buttons for title position.
- }
-
- - init;
-
- - attribChanged: sender;
- - sliderChanged: sender;
-
- - backgroundColorChanged: sender;
- - gaugeColorChanged: sender;
- - textColorChanged: sender;
- - valueChanged: sender;
-
- - titleFieldChanged: sender;
- - titlePositionChanged: sender;
-
- - revert: sender;
- - (BOOL)wantsButtons;
-
- @end
-
-
- @interface MiscGaugeViewInspector (NibInitialization)
-
- - awakeFromNib;
-
- @end
-
-